home *** CD-ROM | disk | FTP | other *** search
Text File | 1987-07-03 | 1.8 KB | 104 lines | [GPPS/LIST] |
- % certificate with seal
- /outsidecircletext
- {circtextdict begin
- /radius exch def
- /centerangle exch def
- /ptsize exch def
- /str exch def
- /xradius radius ptsize 4 div add def
-
- gsave
- centerangle str findhalfangle add rotate
-
- str
- {/charcode exch def
- ( ) dup 0 charcode put outsideplacechar
- }forall
- grestore
- end
- }def
-
- /insidecircletext
- {circtextdict begin
- /radius exch def /centerangle exch def
- /ptsize exch def /str exch def
-
- /xradius radius ptsize 3 div sub def
- gsave
- centerangle str findhalfangle sub rotate
- str
- {/charcode exch def
- ( ) dup 0 charcode put insideplacechar
- }forall
- grestore
- end
- }def
-
- /circtextdict 16 dict def
- circtextdict begin
- /findhalfangle
- {stringwidth pop 2 div
- 2 xradius mul pi mul div 360 mul
- }def
-
-
- /outsideplacechar
- {/char exch def
- /halfangle char findhalfangle def
- gsave
- halfangle neg rotate
- radius 0 translate
- -90 rotate
- char stringwidth pop 2 div neg 0 moveto
- char show
- grestore
- halfangle 2 mul neg rotate
- }def
-
- /insideplacechar
- {/char exch def
- /halfangle char findhalfangle def
- gsave
- halfangle rotate
- radius 0 translate
- 90 rotate
- char stringwidth pop 2 div neg 0 moveto
- char show
- grestore
- halfangle 2 mul rotate
- }def
-
- /pi 3.1415923 def
- end
-
-
-
- /Badge
- {
- /Times-Bold findfont 12 scalefont setfont
-
- topseal % top of circle text
-
- 12 90 52 outsidecircletext
-
- bottomseal % bottom of circle text
-
- 12 270 52 insidecircletext
-
- } def
- /cutline
- {newpath .5 setgray 0 3 60 0 360 arc stroke 0 setgray } def % draw circle
- -90 rotate
- gsave
- -396 50 translate % number of points to move down on the page was 50
- /Times-Bold findfont 40 scalefont setfont % set the point size-- match below
-
- topline % text to be printed
- 40 90 475 outsidecircletext % the 1st number is the point size match above was 500
- grestore
- -612 0 translate
- 476 103 translate gsave
- Badge cutline
- % /#copies 1 def
- showpage
-